    /* BASE SETTINGS */
    .fb-ws-v3-scope {
        background: #000;
        color: #fff;
        font-family: 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .fb-ws-v3-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 25px;
        box-sizing: border-box;
        margin-top: 50px;
    }

    /* HERO */
    .fb-ws-v3-hero {
        padding: clamp(100px, 15vh, 180px) 0;
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
            url('') center/cover;
        border-bottom: 6px solid #ffcc00;
        text-align: left;
    }

    .fb-ws-v3-status-bar {
        color: #ffcc00;
        font-weight: 900;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
    }

    .fb-ws-v3-signal {
        width: 10px;
        height: 10px;
        background: #ffcc00;
        border-radius: 50%;
        display: block;
        animation: fb-ws-blink 1.2s infinite;
    }

    @keyframes fb-ws-blink {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.3;
            transform: scale(1.3);
        }
    }

    .fb-ws-v3-h1 {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
        font-weight: 900;
        margin-bottom: 20px;
        line-height: 1;
    }

    .fb-ws-v3-h1 span {
        color: #ffcc00;
    }

    .fb-ws-v3-p {
        max-width: 650px;
        color: #ccc;
        font-size: 1.15rem;
        margin-bottom: 40px;
    }

    .fb-ws-v3-action-row {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .fb-ws-v3-btn-main {
        background: #ffcc00;
        color: #000;
        padding: 18px 40px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
    }

    .fb-ws-v3-btn-outline {
        border: 2px solid #fff;
        color: #fff;
        padding: 16px 40px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
    }

    .fb-ws-v3-btn-main:hover {
        background: #fff;
        transform: translateY(-5px);
    }

    /* SPLIT SECTION */
    .fb-ws-v3-section {
        padding: clamp(60px, 12vh, 120px) 0;
    }

    .fb-ws-v3-dark-bg {
        background: #0a0a0a;
    }

    .fb-ws-v3-split-box {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
        align-items: center;
    }

    .fb-ws-v3-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
        font-weight: 800;
        margin-bottom: 25px;
    }

    .fb-ws-v3-title span {
        color: #ffcc00;
    }

    .fb-ws-v3-lead {
        font-size: 1.3rem;
        color: #ffcc00;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .fb-ws-v3-text {
        color: #bbb;
        margin-bottom: 30px;
    }

    .fb-ws-v3-mini-features {
        display: flex;
        gap: 20px;
    }

    .fb-ws-v3-m-item {
        background: #151515;
        padding: 12px 20px;
        border-radius: 4px;
        border-left: 3px solid #ffcc00;
        font-size: 0.9rem;
    }

    .fb-ws-v3-m-item strong {
        color: #ffcc00;
        display: block;
    }

    .fb-ws-v3-image-wrapper {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid #333;
    }

    .fb-ws-v3-img {
        width: 100%;
        display: block;
        filter: brightness(0.8);
        transition: 0.5s;
    }

    .fb-ws-v3-image-wrapper:hover .fb-ws-v3-img {
        filter: brightness(1);
        transform: scale(1.05);
    }

    .fb-ws-v3-label {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: #ffcc00;
        color: #000;
        padding: 6px 15px;
        font-weight: 900;
        font-size: 10px;
        text-transform: uppercase;
    }

    /* GRID */
    .fb-ws-v3-center-text {
        text-align: center;
        margin-bottom: 60px;
    }

    .fb-ws-v3-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .fb-ws-v3-card {
        background: #111;
        padding: 50px 40px;
        border-radius: 15px;
        border: 1px solid #222;
        transition: 0.4s;
    }

    .fb-ws-v3-card-icon {
        font-size: 3rem;
        margin-bottom: 25px;
    }

    .fb-ws-v3-active {
        border-color: #ffcc00;
        background: #1a1a1a;
    }

    .fb-ws-v3-card:hover {
        transform: translateY(-10px);
        border-color: #ffcc00;
    }

    .fb-ws-v3-card h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .fb-ws-v3-card p {
        color: #888;
        font-size: 0.95rem;
    }

    /* DUAL PANE */
    .fb-ws-v3-dual-pane {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .fb-ws-v3-pane-black {
        background: #111;
        padding: 50px;
        border-radius: 15px;
    }

    .fb-ws-v3-pane-yellow {
        background: #ffcc00;
        color: #000;
        padding: 50px;
        border-radius: 15px;
    }

    .fb-ws-v3-check-list,
    .fb-ws-v3-check-list-dark {
        list-style: none;
        padding: 0;
        margin-top: 30px;
    }

    .fb-ws-v3-check-list li,
    .fb-ws-v3-check-list-dark li {
        padding: 12px 0;
        position: relative;
        padding-left: 35px;
        font-weight: 700;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .fb-ws-v3-check-list-dark li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .fb-ws-v3-check-list li::before {
        content: '✔';
        position: absolute;
        left: 0;
        color: #ffcc00;
    }

    .fb-ws-v3-check-list-dark li::before {
        content: '✔';
        position: absolute;
        left: 0;
        color: #000;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .fb-ws-v3-split-box {
            grid-template-columns: 1fr;
        }

        .fb-ws-v3-col-visual {
            order: -1;
        }

        .fb-ws-v3-col-info {
            text-align: center;
        }

        .fb-ws-v3-mini-features {
            justify-content: center;
        }

        .fb-ws-v3-hero {
            text-align: center;
        }

        .fb-ws-v3-status-bar {
            justify-content: center;
        }

        .fb-ws-v3-action-row {
            justify-content: center;
        }
    }

    @media (max-width: 600px) {
        .fb-ws-v3-action-row {
            flex-direction: column;
        }

        .fb-ws-v3-btn-main,
        .fb-ws-v3-btn-outline {
            width: 100%;
            text-align: center;
        }

        .fb-ws-v3-mini-features {
            flex-direction: column;
        }

        .fb-ws-v3-pane-black,
        .fb-ws-v3-pane-yellow {
            padding: 35px 25px;
        }
    }